home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / A.D. Software / OOFGraph / Application Source / StackedBarGraphWindow.h < prev    next >
Text File  |  1996-06-15  |  713b  |  29 lines

  1. // ===========================================================================
  2. //    StackedBarGraphWindow.h                    Derived heavily from the Dashboard Starter
  3. // ===========================================================================
  4.  
  5. #pragma once
  6. #include "oofStackedBarGraph.h"
  7. #include "CPlotPane.h"
  8.  
  9. class    LCommander;
  10. class    dbView;
  11.  
  12. class    StackedBarGraphWindow {
  13. public:
  14.                         StackedBarGraphWindow(LCommander*, dbView *theView, StringPtr theTitle,
  15.                                           unsigned long xAxisLength=0);
  16.     virtual             ~StackedBarGraphWindow();
  17.                                 
  18.     void                DoPrinting();
  19.                                 
  20. protected:
  21.     LWindow*            mDisplayWindow;
  22.     CPlotPane*            PlotView;
  23.     oofStackedBarGraph*    mBarGraphPtr;
  24.  
  25. public:
  26.     static void RegisterClass();
  27. };
  28.  
  29.